home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / tsweb_detect.nasl < prev    next >
Text File  |  2005-01-14  |  4KB  |  112 lines

  1. if(description)
  2. {
  3.  script_id(12234);
  4.  script_version ("$Revision: 1.3 $");
  5.  
  6.  name["english"] = "Terminal Services Web Detection";
  7.  script_name(english:name["english"]);
  8.  
  9.  desc["english"] = "
  10. The remote host appears to be configured to facilitate the client
  11. download of an ActiveX Terminal Services Client.  So, users can access the
  12. web page and click a 'connect' button which will prompt a client-side download
  13. of a .cab file which will be used to connect the client directly to a
  14. terminal services server using Remote Desktop Protocol -- RDP.  Of course,
  15. you will want to manually inspect this page for possible information regarding
  16. systems offering RDP access, system information, IP addressing information, etc.
  17.  
  18.  
  19. Solution : password protect access to the 'tsweb' resource.
  20. Risk factor : Medium";
  21.  
  22.  
  23.  script_description(english:desc["english"]);
  24.  
  25.  summary["english"] = "Find instances of tsweb";
  26.  
  27.  script_summary(english:summary["english"]);
  28.  
  29.  script_category(ACT_GATHER_INFO);
  30.  
  31.  
  32.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  33.  
  34.  family["english"] = "CGI abuses";
  35.  family["francais"] = "Abus de CGI";
  36.  script_family(english:family["english"], francais:family["francais"]);
  37.  script_dependencie("find_service.nes", "no404.nasl");
  38.  script_require_ports("Services/www", 80);
  39.  exit(0);
  40. }
  41.  
  42. #
  43. # The script code starts here
  44. #
  45.  
  46. include("http_func.inc");
  47. include("http_keepalive.inc");
  48.  
  49. port = get_http_port(default:80);
  50.  
  51. if(!get_port_state(port))exit(0);
  52.  
  53.  
  54. mywarning = string("
  55. The remote host appears to be configured to facilitate the client 
  56. download of an ActiveX Terminal Services Client.  So, users can access the
  57. web page and click a 'connect' button which will prompt a client-side download
  58. of a .cab file which will be used to connect the client directly to a 
  59. terminal services server using Remote Desktop Protocol -- RDP.  Of course,
  60. you will want to manually inspect this page for possible information regarding
  61. systems offering RDP access, system information, IP addressing information, etc.",
  62. "\n\nSpecifically, The following directory should provide a useful resource in your
  63. pen-testing endeavors:\n");
  64.  
  65.  
  66.  
  67.  
  68.  
  69. # So, we'll first just check for http://<host>/tsweb/
  70. # 9 times out of 10, you'll find it in this location
  71.  
  72. req = http_get(item:string("/tsweb/"),
  73.                  port:port);
  74. buf = http_keepalive_send_recv(port:port, data:req);
  75. if(egrep(pattern:"const L_DisconnectedCaption_ErrorMessage", string:buf)) {
  76.         mywarning += string("\n", "http://", get_host_ip() , "/tsweb/", "\n");
  77.         security_warning(port:port, data:mywarning);
  78.         exit(0);
  79. }
  80.  
  81.  
  82.  
  83.  
  84.  
  85. # Next, we'll roll through each of the cgi_dirs and check for either 
  86. # /tsweb/<default page> or /tsweb.asp
  87.  
  88. foreach d (cgi_dirs()) {
  89.     req = http_get(item:string(d, "/tsweb.asp"),
  90.                  port:port);
  91.     req2 = http_get(item:string(d, "/tsweb/"),
  92.                  port:port);
  93.  
  94.     buf = http_keepalive_send_recv(port:port, data:req);
  95.     buf2 = http_keepalive_send_recv(port:port, data:req2);
  96.  
  97.     if(egrep(pattern:"const L_DisconnectedCaption_ErrorMessage", string:buf)) {
  98.         mywarning += string("\nhttp://", get_host_ip() ,d, "/tsweb.asp\n");
  99.         security_warning(port:port, data:mywarning);
  100.         exit(0);
  101.     }
  102.  
  103.     if(egrep(pattern:"const L_DisconnectedCaption_ErrorMessage", string:buf2)) {
  104.         mywarning += string("\nhttp://", get_host_ip() , d, "/tsweb/\n");
  105.         security_warning(port:port, data:mywarning);
  106.         exit(0);
  107.     }
  108.  
  109. }
  110.  
  111.  
  112.